home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d18
/
intrfc4.arc
/
TEST1.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1990-12-23
|
213 b
|
15 lines
unit test1;
interface
uses dos,printer;
type
color = (red,green,blue);
const
a = 1;
b = 1.1;
rose = red;
procedure f(var v);
implementation
procedure f;
begin
end;
end.